<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Service Start-Up & Vision Alignment | Beyond The Clock</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
  <link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap" rel="stylesheet">
  <style>
    :root {
      --turquoise: #009ca6;
      --bright-turquoise: #00bfb2;
      --green-shade: #018f89;
      --blue-shade: #0288a7;
      --white: #ffffff;
      --dark-turquoise: #058593;
      --golden-yellow: #f4b400;
      --text-color: #000000;
      --bg-light: whitesmoke;
    }

    body {
      margin: 0;
      font-family: 'Nunito Sans', sans-serif;
      background-color: var(--bg-light);
      color: var(--text-color);
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: var(--bright-turquoise);
      color: white;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .motto {
      font-style: italic;
      font-size: 1.1rem;
      text-align: center;
      flex-grow: 1;
    }

    .contact-info {
      text-align: right;
      font-size: 0.9rem;
    }

    .back-link {
      margin-top: 5px;
      display: inline-block;
      background:var(--golden-yellow);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .back-link:hover {
      background-color:white;
      color: var(--dark-turquoise);
    }

    .back-to-services-button {
      display: inline-block;
      background-color: var(--golden-yellow);
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .back-to-services-button:hover {
      background-color: var(--dark-turquoise);
      color:var(--golden-yellow);
      transform: scale(1.05);
    }

    .hero {
      position: relative;
      width: 100%;
      height: 400px;
      background: url(service-startup-hero.jpg) center/cover no-repeat;
    }

    .hero-logo {
      position: absolute;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 180px;
      height: auto;
      z-index: 2;
      filter: drop-shadow(0 0 10px white);
    }

    .section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .section h1 {
      color: var(--dark-turquoise);
      font-size: 2rem;
      margin-bottom: 15px;
      text-align: center;
    }

    .section p {
      font-size: 1rem;
      line-height: 1.6;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .section img.intro-img {
      display: block;
      margin: 0 auto 40px auto;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .bullet-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin: 60px auto;
      max-width: 1100px;
      padding: 0 20px;
    }

    .bullet-col {
      flex: 1 1 45%;
    }

    .bullet-col h3 {
      color: var(--blue-shade);
    }

    .gold-bullets ul {
      list-style: none;
      padding-left: 0;
    }

    .gold-bullets li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 12px;
    }

    .gold-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 14px;
      height: 14px;
      background-color: var(--golden-yellow);
      border-radius: 50%;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    @media (max-width: 900px) {
      .bullet-section {
        flex-direction: column;
      }

      .gallery {
        grid-template-columns: 1fr;
      }
    }

    footer {
      background-color: var(--blue-shade);
      color: white;
      padding: 30px 20px;
      text-align: center;
    }

    footer img {
      max-width: 100px;
      margin-bottom: 10px;
    }

    footer a {
      margin: 0 10px;
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
    }

    footer p {
      font-size: 0.9rem;
    }

    .footer-style-section {
      background-color: var(--bright-turquoise);
      color: white;
      padding: 20px 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      align-items: start;
      text-align: left;
    }

    .footer-grid h3 {
      margin-bottom: 10px;
    }

    .footer-grid ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-grid a {
      color: white;
      text-decoration: none;
    }

    .footer-grid a:hover {
      text-decoration: underline;
    }

    .footer-grid p, .footer-grid i {
      margin: 0.5rem 0;
    }

    .footer-grid i {
      margin-right: 10px;
    }

    .footer-bottom {
      background-color: #007c8a;
      color: white;
      padding: 5px;
      text-align: center;
      font-size: 0.9rem;
      margin-top: 0;
    }

  </style>
</head>
<body>

  <!-- HEADER -->
  <header>
    <div class="logo">Beyond The Clock</div>
    <div class="motto">Support for Leaders, Change for Children</div>
    <div class="contact-info">
      Call: +61 421 021 830<br>
      <a href="../index.html" class="back-link">← Back to Services</a>
    </div>
  </header>

  <!-- HERO SECTION -->
  <div class="hero">
    <img src="logo.png" alt="Logo" class="hero-logo">
  </div>

  <!-- INTRO SECTION -->
  <div class="section">
    <h1>Service Start-Up & Vision Alignment</h1>
    <p>Starting a new service is exciting—but it also comes with a maze of decisions, compliance tasks, and the need for a clear, compelling vision. Beyond the Clock works alongside new approved providers to establish strong, sustainable foundations that align with your values, meet all regulatory requirements, and set the tone for long-term quality.</p>
    <img src="startup-vision.jpg" alt="Start-Up & Vision Support" class="intro-img">
  </div>

  <!-- BULLET POINT SECTION -->
  <div class="bullet-section">
    <div class="bullet-col gold-bullets">
      <h3>This service supports you to:</h3>
      <ul>
        <li>Clarify your service philosophy and educational approach</li>
        <li>Align your values with regulatory and operational requirements</li>
        <li>Understand your responsibilities as an approved provider under the NQF</li>
        <li>Develop policies, staffing structures, and environments with intention</li>
        <li>Build a strong leadership and educator culture from the beginning</li>
      </ul>
    </div>
    <div class="bullet-col gold-bullets">
      <h3>Includes:</h3>
      <ul>
        <li>Compliance guidance for NQF and state-based approvals</li>
        <li>Policy and procedure development</li>
        <li>Organisational structure and staffing support</li>
        <li>Environment and program planning aligned with EYLF (and Montessori, if relevant)</li>
        <li>Ongoing coaching and mentoring in the early months of operation</li>
      </ul>
    </div>
  </div>

  <!-- IMAGE GALLERY SECTION -->
  <div class="gallery">
    <img src="startup1.jpg" alt="Gallery Image 1">
    <img src="startup2.jpg" alt="Gallery Image 2">
    <img src="startup3.jpg" alt="Gallery Image 3">
  </div>

  <div style="text-align:center; margin: 40px 0;">
    <a href="../index.html" class="back-to-services-button">← Back to Services</a>
  </div>

  <!-- FOOTER -->
  <section class="footer-style-section">
    <div class="footer-grid">
      <div>
        <h3>Quick Links</h3>
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#about">About</a></li>
          <li><a href="#services">Services</a></li>
          <li><a href="#testimonials">Testimonials</a></li>
          <li><a href="#contact">Contact</a></li>
        </ul>
      </div>
      <div>
        <h3>About Us</h3>
        <p>Beyond The Clock supports Early Learning Services with tailored mentorship to create inspiring, child-focused spaces. Founded by Tamiko, an educator with 20+ years’ experience, we're here to help you thrive and make a lasting impact.</p>
      </div>
      <div>
        <h3>Contact</h3>
        <p><i class="fas fa-phone"></i> +61 421 021 830</p>
        <p><i class="fas fa-envelope"></i> info@beyondtheclock.com.au</p>
        <p><i class="fas fa-globe"></i> www.beyondtheclock.com.au</p>
      </div>
    </div>
  </section>

  <footer class="footer-bottom">
    <div>
      <div>
        <a href="#"><i class="fab fa-facebook-f"></i></a>
        <a href="#"><i class="fab fa-instagram"></i></a>
      </div>
      <p>&copy; 2025 Beyond The Clock. All rights reserved.</p>
    </div>
  </footer>

</body>
</html>
